home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 March / PCWorld_2008-03_cd.bin / v cisle / mediacoder / MediaCoder-0.6.1.4045.exe / htdocs / sys / appinfo.xsl next >
Extensible Markup Language  |  2007-10-27  |  1KB  |  39 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  3. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  4. <xsl:output method="xml" encoding="utf-8" doctype-public="-//MOZILLA//DTD XUL V1.0//EN"/>
  5.  
  6. <xsl:template match="/Root">
  7.  
  8. <window xmlns:html="http://www.w3.org/1999/xhtml"
  9.         xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  10.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  11.         style="background:none"
  12.         >
  13.  
  14. <grid>
  15.   <columns>
  16.     <column class="entry_row"/>
  17.     <column flex="1"/>
  18.   </columns>
  19.   <rows>
  20.     <row>
  21.       <label>Version:</label>
  22.       <label><xsl:value-of select="Version"/></label>
  23.     </row>
  24.     <row>
  25.       <label>Sources:</label>
  26.       <label>Audio: <xsl:value-of select="AudioSources"/> / Video: <xsl:value-of select="VideoSources"/></label>
  27.     </row>
  28.     <row>
  29.       <label>Encoders:</label>
  30.       <label>Audio: <xsl:value-of select="AudioEncoders"/> / Video: <xsl:value-of select="VideoEncoders"/></label>
  31.     </row>
  32.   </rows>
  33. </grid>
  34.  
  35. </window>
  36.  
  37. </xsl:template>
  38.  
  39. </xsl:stylesheet>